/* ============================= */
/* MODAL OVERLAY (alle Popups) */
/* ============================= */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  z-index: 2147483647;

  justify-content: center;
  align-items: center;
}




/* ============================= */
/* MODAL CONTENT BOX */
/* ============================= */

.modal-content {
  position: relative;

  background: #fff;
  border-radius: 12px;

  width: min(650px, 95vw);

  height: auto;
  max-height: 85vh;

  padding: 20px;
  box-sizing: border-box;

  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);

  overflow: auto;
}


/* ============================= */
/* IFRAME */
/* ============================= */

.modal-content iframe {
  width: 100%;
  height: 220px; /* Startwert, wird per JS angepasst */
  border: none;
  display: block;
}


/* ============================= */
/* CLOSE BUTTON */
/* ============================= */

.close-button {
  position: absolute;
  top: 10px;
  right: 14px;

  font-size: 28px;
  font-weight: bold;

  cursor: pointer;

  background: transparent;
  border: none;

  color: black;
  line-height: 1;
}

.close-button:hover {
  color: #E2001A;
}


/* ============================= */
/* MOBILE OPTIMIERUNG */
/* ============================= */

@media (max-width: 768px) {

  .modal-content {
    width: 90vw;
    padding: 18px;
    max-height: 90vh;
  }

  .modal-content iframe {
    height: 240px;
  }
}
